html, body {
	font-family: var(--text-font);
	font-size: 20px;
	background-color: #000000;
}
h1, .h1, h2, .h2,h3, .h3,h4, .h4,h5, .h5, h6, .h6{
	font-family: var(--header-font);
}

/**
 * Header
 */

header{
	position: fixed;
	width: calc(100vw - var(--scrollbar));
	z-index:1010;

}
header>.container{
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	
}


header:before{
	content: '';
	position: absolute;
	inset: 0 0 0 0;
	z-index: 0;
	background: linear-gradient(#000000,transparent);
	height: 5rem;
	pointer-events:none;
}



.brand img {
	position: relative;
	display: block;
	max-height: 50px;
	width: auto;
	height: auto;
	z-index: 1000;
}



@media(min-width: 768px){
	header>.container{
		padding-top: 1rem;
	}
	.brand img {
		max-height: 50px;
	}
}

.area {
	background-color: #ffffff;
}

.area.area-welcome{
	background: #000000;
	position:relative;
	width: calc(100vw - var(--scrollbar));
	height: 100vh;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	padding-top: 15rem;
}

.area.area-welcome>*{
	z-index:1;
}

.area.area-welcome::before{
	content: '';
	background: url('../photos/big/the_view-copy.webp') no-repeat center /cover;
	opacity: 0.5;
	position: absolute; 
	inset: 0;
}


.area.area-welcome img{
	max-height: 10rem;
	width: auto;
	height: auto;
	
}

.area.area-welcome p{
	width: 65%;
	margin-left: auto;
	margin-right: auto;
}

.btn-top{
	color: #ffffff;
	font-size: 3rem;
	transition: transform var(--speed);
}



@media(max-width: 992px){
	.area.area-welcome img{
		max-height: 8rem;			
	}

	.area.area-welcome p{
		width: 85%;
		font-size: 1rem;
	}

	.btn-top{
		font-size: 3rem;
	}
}
@media(max-width: 412px){
	.area.area-welcome img{
		max-height: 6rem;		
	}
	.area.area-welcome p{
		width: 90%;
		font-size: 0.8rem;
	}
		.btn-top{
		font-size: 2.5rem;
	}
	
}

.btn-top:hover,
.btn-top:active,
.btn-top:focus{
	color: #ffffff;
	box-shadow: none;
	transform: scale(1.5);
}

/**
 * Thumbnails
 */
.thumb {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	padding: 0;
	padding-bottom: 100%;	/* Default to 1:1 */
	overflow: hidden;
	background: none;
}
.thumb img {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.thumb.cover {
	overflow: hidden;
}
.thumb.cover img {
	height: 100%;
	width: auto;
	max-width: none;
}
.thumb.cover img.portrait {
	width: 100%;
	height: auto;
	max-height: none;
}
.thumb img.bottom {
	top: auto;
	bottom: 0;
	transform: translate(-50%,0);
}
.thumb.round {
	border-radius: 50%;
	overflow: hidden;
}
.thumb.sq,
.thumb.aspect1x1 { padding-bottom: 100%; }
.thumb.aspect2x1 { padding-bottom: 50%; }
.thumb.aspect16x9 { padding-bottom: 56.25%; }
.thumb.aspect4x3 { padding-bottom: 75%; }

.thumb .caption {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: -100%;
	transform: translate(-50%,50%);
	transition: all .3s;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: normal;
}
.thumb:hover .caption {
	bottom: 50%;
}


/**
*Area
*/
.area-home {
	padding: 3rem 0;
}
.area-home .thumb {
	background: var(--bg-image) center / contain no-repeat;
	max-width: 80%;
	margin: 0 auto;
}


.area-dark,
.area-home:nth-child(2n+1) {
	background: #000000;
	color: #ffffff;
	position:relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
}
.area-home:nth-child(2n+1)>* {
	position: relative;
	z-index: 1;
}


.area-home:nth-child(2n+1)::before{
	content: '';
	background: var(--bg-lg-image) center / cover;
	inset:0;
	opacity: 0.5;
	position: absolute; 
}




.area-home:nth-child(2n+1) .row {
	display: block;
	
}
.area-home:nth-child(2n+1) .row > * {
	width: 80%;
	text-align: center;
}
.area-home:nth-child(2n+1) .thumb {
	display:none;
}


.area-description{
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
}

.area-description h2{
	font-size: 2rem;
}

.area {
	padding: 6rem 0;
}


.area-catalogue .table {
	width: 100%;
	margin: 4rem auto;
}

.area-catalogue h2 {
	font-size: 2rem;
}
.area-catalogue .table p {
	margin-bottom: 0;
	text-align: left;
	
}

.area-catalogue .table td {
	vertical-align: middle;
}


.area-catalogue .table td:first-child {
	width: 100%;
}
.area-catalogue .table td:last-child p {
	text-align: right;
	white-space: nowrap;
}


.area-catalogue:nth-child(2n+1){
	background-color: #000000;
	color: #ffffff;
}
.area-catalogue:nth-child(2n+1) .table {
	color: #ffffff;
	border-color: #444444;
}
.area-catalogue:nth-child(2n) .table {
	border-color: #cccccc;
}
@media (min-width: 768px) {
	.area {
		padding: 8rem 0;
	}
}
@media (min-width: 992px) {
	.area-description h2{
		font-size: 4rem;
	}
	.area-catalogue .table{
		width: 800px; 
		margin: 6rem auto;
	}
	.area-catalogue h2 {
		font-size: 2.5rem;
	}
	.area-catalogue .table td {
		padding: 1rem .5rem;
	}
}


/**
 * owl carousel
 */
.owl-carousel .slide {
	position: relative;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	background: var(--slide-bg) 50% 50% / cover var(--darkgrey-color);
	height: 100%;
}
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
	height: 100%;
}
.owl-carousel .slide:before {
	content: '';
	position: absolute;
	inset: 0 0 0 0;
	z-index: 1;
	background: rgba(0,0,0, .5);
}
.owl-carousel .slide-caption {
	position: relative;
	z-index: 2;
	color: #ffffff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}
.owl-carousel .h2 {
	font-size: 2.5rem;
	font-weight: 700;
}
.owl-carousel .btn:hover {
	color: #000000;
	background: #ffffff;
}

.owl-product-photos {
	height: 50vh;
}
.owl-carousel.owl-product-photos .slide::before {
	background: none;
}
.owl-theme.owl-product-photos .owl-nav {
	position: absolute;
	top: 40%;
	z-index: 10;
	margin: 0;
	width: 100%;
}
.owl-carousel.owl-product-photos .owl-nav button.owl-next,
.owl-carousel.owl-product-photos .owl-nav button.owl-prev,
.owl-carousel.owl-product-photos button.owl-dot {
	position: absolute;
	right: 2rem;
	display: inline-flex;
	margin: 0;
	color: #ffffff;
	font-size: 100px;
}
.owl-carousel.owl-product-photos .owl-nav button.owl-prev {
	left: 2rem;
	right: auto;
}

.owl-product-photos {
	height: 40vw;
}
.owl-product-photos .owl-item {
	margin: 0 .5rem;
}
.owl-product-photos .slide {
	width: calc(40vw * var(--aspectratio));
}
@media (min-width: 992px) {
	.owl-carousel .slide {
		background-image: var(--slide-lg-bg);
	}
	.owl-carousel .h2 {
		font-size: 3.5rem;
	}
}


/**
 * Page-typical
 */

.page-header{
	background: #000000;
	position:relative;
	width: calc(100vw - var(--scrollbar));
	height: 100vh;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
}
.page-header>*{
	z-index:1;
}
.page-header::before{
	content: '';
	background: var(--bg-lg-image) no-repeat center /cover;
	opacity: 0.4;
	position: absolute; 
	inset: 0;
}
.page-header img{
	max-height: 10rem;
	width: auto;
	height: auto;
	
}
/**
*Page-Contact
*/
.contact-elements{
	line-height: 2rem;
}
.contact-elements h2{
	font-size: 2rem;
}

.contact-elements a{
	color: #000000;
	text-decoration: none;
	padding-left: 1rem;
}

.contact-elements a:hover{
	color: #000000;
	transform: scale(1.1, 1.1);
}

.contact-social-list{
	display: inline-flex;
	list-style: none;

}

.contact-social-list{
	padding-left: 0;
}
.contact-social-list a{
	padding-left: 0;
	padding-right: 1rem;
	color: #000000;
}
.contact-social-list a:hover{
	text-decoration: none;
}


.contact-form .form-check-input:checked{
	background-color: #000000;
	border-color: #000000;
	
}
.contact-form .form-check-input:focus{
	box-shadow: 0 0 0 .25rem rgba(85, 85, 85,.25);
}
.contact-form .btn-primary, 
.contact-form .btn-secondary{
	color: #ffffff;
	background-color: #000000;
	border-color: #000000;
}
.contact-form .btn-primary:hover{
	color: #000000;
	background-color: #ffffff;
	border-color: #000000;
}

.catalog-nav .btn {
	display: block;
	margin-bottom: 1rem;
	text-align: left;
	counter-increment: listCounter;
}
.catalog-nav .btn::before {
	content: counter(listCounter, decimal-leading-zero);
	display: inline-block;
	margin-right: 1rem;
	color: #ffffff;
}

@media(min-width: 992px){
	.contact-elements h2{
		font-size: 3rem;
	}
	.catalog-nav {
		column-count: 2;
		column-gap: 3rem;
	}

}



/**
*Breadcrumb
*/
.breadcrumb {
	font-size: .875rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 1rem;
	justify-content: center;
}
.breadcrumb li a{
	color: #ffffff;
	text-decoration: none;
	padding-right: 0.3rem;
	padding-left: 0.3rem;
}

.breadcrumb .divider {
	display: none;
}
.breadcrumb li + li::before {
	content: '|';
	display: inline-block;
}



/**
 * Cookies box
 */
.cb-cookiesbox {
	position: fixed;
	top: auto; left: 0; right: 0; bottom: 0;
	z-index: 1010;
	display: block;
	padding: 8px;
	margin: 0;
	color: #ffffff;
	background: #000000;
	max-width: calc(100vw - var(--scrollbar));
}
.cb-cookiesbox p {
	margin: 0;
	text-align: center;
	line-height: 1em;
}
.cb-cookiesbox ul{
	display: inline-flex;
}
.cb-cookiesbox ul li{
	margin-left: 1rem;

}

.cb-cookiesbox .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 24px;
	height: 24px;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	background: none;
}
.cb-cookiesbox .btn-close:hover,
.cb-cookiesbox .btn-close:focus,
.modal-content .btn-primary:hover,
.modal-content .btn-primary:focus,
.modal-content .btn-close:hover,
.modal-content .btn-close:focus{
	 color: #ffffff;
	 box-shadow: none;
 }


.cb-cookiesbox .btn-primary,
.modal-content .btn-primary {
	background: #000000;
	border-color: #ffffff;
}
.cb-cookiesbox .btn-primary:hover{
	background: #ffffff;
	color: #000000;
}
@media (min-width:992px) {
	.cb-cookiesbox {
		left: 2rem; right: auto; bottom: 2rem;
		width: 470px;
		padding: 1rem 2rem;
	}
	.cb-cookiesbox p {
		padding-right: 4rem;
	}
}



#map, .map {
	height: 100%;
}

main #map.map{
	height: 350px;
}

@media(max-width: 992px){
	#map, .map {
		min-height: 20rem;
	}
}

.leaflet-popup h2 {
	font-size: .875rem;
}

.map-selector { height: 200px; }
.map-selector label { width: auto; display:inline; }
.map-selector img { max-height: none; max-width: none; }


/**
 * Modal
 */
.modal-content {
	-webkit-border-radius: 0;
	-webkit-background-clip: padding-box;
	-moz-border-radius: 0;
	-moz-background-clip: padding;
	border-radius: 15px;
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 40px rgba(0,0,0,.5);
	box-shadow: 0 0 40px rgba(0,0,0,.5);
}
.modal-message .modal-dialog {
	width: 450px;
}
.modal-message .modal-body, .modal-message .modal-footer, .modal-message .modal-header, .modal-message .modal-title {
	background: 0 0;
	border: none;
	margin: 0;
	padding: 0 20px;
	text-align: center!important;
	font-size: 14px;
}
.modal-message label {
	font-size: 12px;
}
.modal-message .btn {
	font-size: 12px;
}
.modal-message .modal-title {
	font-size: 17px;
	color: #666666;
	margin-bottom: 3px;
}

.modal-message .modal-body {
	color: #999999;
}
.modal-message .modal-header {
	color: #ffffff;
	margin-bottom: 10px;
	padding: 15px 0 8px;
}
.modal-message .modal-header .fas, 
.modal-message .modal-header .fab, 
.modal-message .modal-header .glyphicon {
	font-size: 30px;
}

.modal-message .modal-footer {
	margin: 25px 0 20px;
	padding-bottom: 10px;
}

.modal-backdrop.in {
	zoom: 1;
	filter: alpha(opacity=40);
	-webkit-opacity: .10;
	-moz-opacity: .40;
	opacity: .40;
}
.modal-backdrop {
	background-color: #000000;
}
.modal-message .modal-header {
	justify-content: center;
	font-size: 40px;
}
.modal-message.modal-success .modal-header {
	color: #5cb85c;
	border-bottom: 3px solid #5cb85c;
}

.modal-message.modal-info .modal-header {
	color: #1FA9FF;
	border-bottom: 3px solid #1FA9FF;
}

.modal-message.modal-danger .modal-header {
	color: #FF0000;
	border-bottom: 3px solid #FF0000;
}

.modal-message.modal-warning .modal-header {
	color: #EFB03B;
	border-bottom: 3px solid #EFB03B;
}
.modal-message .form-group {
	display: flex;
	flex-wrap: wrap;
}
.modal-message .control {
	order: 1;
	flex-basis: 30px;
}
.modal-message .control-label {
	order: 2;
	flex-basis: calc(100% - 30px);
	text-align: left;
}


/**
 * Footer
 */

footer {
	background: #000000;
	padding: 8rem 0 0;
	color: #ffffff;
}


footer .footer-panel{
	border: 1px solid #ffffff;
	height: 100%;
	padding: 0.8rem;
	line-height: 2.8;
}

footer .map-footer-panel{
	height: 100%;
}


footer span{
	padding-right: 0.8rem;
}

footer .social-icons a{
	border: 1px solid #ffffff;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.2rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}



footer .social-tag{
	border: 1px solid #ffffff;
	border-radius: 2rem;
	width: 100%;
	margin: auto;
	padding: 0.5rem;
	font-size: 0.8rem;
}


footer a, footer a:hover, footer a:focus{
	color: #ffffff;
	text-decoration: none;
	transition: all var(--speed);
}
footer a:hover, footer a:focus {
	color: var(--secondary-color);
}
footer img {
	max-width: 200px;
	max-height: 100px;
	width: auto;
	height: auto;
	margin-bottom: 3rem;
}
footer .caption {
	padding: .5rem 0;
	font-size: 1.5rem;
}

footer .footer-title h2{
	text-transform: uppercase;
	font-size: 3rem;
}
footer .footer-title h2{
	font-size: 2rem;
}

.wrap-bottom {
	font-size: .75rem;
}
@media(min-width: 992px){
	footer .footer-title h2{
		font-size: 2.6rem;
	}
	.wrap-bottom {
		padding-bottom: 3rem;
	}
}

.area-dark .catalog-nav .btn-outline-secondary{
	color: #ffffff;
	border-color: #ffffff;
}

.area-dark .catalog-nav .btn-outline-secondary:hover{
	color: #000000;
	border-color: #000000;
	background-color: #ffffff;
}
.area-dark .catalog-nav .btn-outline-secondary:hover::before {
	color: #000000;
}

#scroll-top {
	display: inline;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 1000;
	font-size: 22px;
	border: none;
	outline: none;
	background: #000000;
	color: #ffffff;
	cursor: pointer;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
	box-shadow: 0 3px 24px rgb(0 0 0/10%);
	transition: all .5s ease-in-out;
}